home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / icu-1.3.1 / icuapps / readme < prev   
Text File  |  2000-02-23  |  2KB  |  91 lines

  1. I C U  -  A P P S
  2. -----------------
  3.  
  4.  This package contains sample applications built using the ICU. For
  5. more information on the ICU:
  6.  
  7.  URL:   http://www10.software.ibm.com/developerworks/opensource/icu/
  8.  
  9.  Email: icu4c@us.ibm.com
  10.  
  11.  
  12.  If you have an application that is written using the ICU that you
  13. would like to contribute, see the contact information above.
  14.  
  15.  
  16. BUILDING
  17. --------
  18.  
  19.  
  20. *** UNIX (or other command line platforms):
  21.  
  22.   1. Build and install the ICU ('make install'). Make note of the 
  23.       prefix used to build the ICU, which can be set with the
  24.      '--prefix=' option to it's ./configure.
  25.  
  26.   2. (Run 'autoconf' if there is no configure script.)
  27.      Run the ./configure script in the icuapps directory.  You may need
  28.      to supply the same '--prefix=XXX' argument that was passed to the
  29.      ICU.
  30.  
  31.   3. Type 'make' in the icuapps, or 'make install' if you wish.
  32.  
  33.  Example:
  34.  
  35.   ICU:
  36.      cd ...somewhere/icu
  37.      ./configure --prefix=/var/local
  38.      make install
  39.   
  40.   ICUAPPS:
  41.      cd ...somewhere/icuapps         (THIS directory)
  42.      ./configure --prefix=/var/local
  43.      make
  44.      make install                    (optional)
  45.  
  46.  
  47.  
  48. *** Win32 Instructions
  49.   
  50.   1. Project files to be created. 
  51.   2. For now, you may create your own project file and include
  52.      the ICU include and lib directories.
  53.  
  54.  
  55. ==========================================
  56. ==========================================
  57. THE APPS
  58.  
  59.  
  60. - uconv    From : Jonas Utterstrom 
  61.                   <jonas.utterstrom@vittran.norrnod.se>
  62.            Uses : Conversion
  63.  
  64.    This program will convert data file(s) from one encoding to another
  65.   via Unicode.
  66.    
  67.  
  68. - usort    From : Steven R. Loomis
  69.                   <srl@monkey.sbay.org>
  70.  
  71.            Uses : Conversion, Collation
  72.  
  73.    There are two parts here.
  74.  
  75.     * a shared library (libusort) which makes it simple to sort lines
  76.       of text.
  77.  
  78.     * a command line example program (usort) which will sort lines
  79.       from the console or the file, similar to UNIX 'sort'. 
  80.  
  81. - locexp   From : Steven R. Loomis
  82.                   <srl@monkey.sbay.org>
  83.  
  84.            Uses : Conversion, Collation, Chartypes, Formatting,
  85.                   Resource Bundles,  ...
  86.                   uconv & usort [above]
  87.  
  88. - Your contribution could be here too! Write: <icu4c@us.ibm.com>
  89.  
  90. -----------------
  91. (c) 1999 IBM, Inc. and others